home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 …ember: Reference Library / Dev.CD Dec 96 RL / Dev.CD Dec 96 RL.toast / Technical Documentation / develop / develop Issue 28 / develop Issue 28 code / Merge Tools / WinDifferenceInstall.bat < prev    next >
Encoding:
DOS Batch File  |  1996-09-25  |  607 b   |  29 lines  |  [TEXT/MPS ]

  1. @echo off
  2. if "%1" == "" goto usage1
  3. if "%1" == "Release" goto installRelease
  4. if "%1" == "Debug" goto installDebug
  5. if "%1" == "WinTools" goto installWinTools
  6.  
  7. :usage1
  8. echo   Usage:
  9. echo       WinDifferenceInstall.bat [Debug Release WinTools]
  10. echo
  11. echo   note: argument case is significant
  12. goto end
  13.  
  14. :installRelease
  15. copy DifferenceR.i\Difference.exe %HOMEPATH%\ECTools
  16. goto end
  17.  
  18. :installDebug
  19. copy DifferenceD.i\Difference.exe %HOMEPATH%\ECTools
  20. goto end
  21.  
  22. :installWinTools
  23. mkdir WinTools
  24. copy DifferenceR.i\Difference.exe WinTools
  25. copy DifferenceD.i\Difference.exe WinTools\DifferenceDebug.exe
  26. goto end
  27.  
  28. :end
  29.